Status Bar Message #1

This script sets the status bar text when a button is pressed.



Discussion

This script uses the function setMessage() to set the status bar's text by changing the window.status object.

The function setMessage

// Set the status bar to show a message
function setMessage()
{

    var msg="YOUR MESSAGE HERE"
    window.status = msg
}
Copyright ©2000 by Charles River Media, All Rights Reserved